home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 April / macformat-023.iso / Shareware City / Developers / ArrowCDEF / ArrowCDEF.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-10  |  626 b   |  24 lines  |  [TEXT/KAHL]

  1. /*******************************************************************************
  2.     FILE:            ArrowCDEF.h
  3.     DESCRIPTION:    Some useful constants for the ArrowCDEF
  4.     AUTHOR:            David Hay
  5.     
  6.     Copyright © 1994 David Hay
  7. *******************************************************************************/
  8.  
  9. #ifndef __ARROWCDEF__
  10. #define __ARROWCDEF__
  11.  
  12. #define    kArrowResType    'APIC'    /*    Resource type to define which PICT's to use    */
  13. #define    kArrowResID        500        /*    If you change the CDEF id, change this too        */
  14. #define    kArrowProc        ( kArrowResID * 16 )
  15.  
  16. enum
  17. {
  18.     kPlainArrow = 0,
  19.     kUpArrow,
  20.     kDownArrow,
  21.     kInactiveArrow
  22. };
  23.  
  24. #endif /* __ARROWCDEF__ */